write json to file python

28

import json

data = {"key": "value"}

with open('data.json', 'w') as jsonfile:
    json.dump(data, jsonfile)
import json
with open('data.json', 'w') as f:
    json.dump(data, f)

Comments

Submit
0 Comments